home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Server 1.xpl < prev    next >
Text File  |  2002-10-31  |  2KB  |  64 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Network\Server\Common"
  5. "UIPATH 2"="Network\Security\Server"
  6. "NAME"="Server Options"
  7. "VERSION"="1.36"
  8. "OSVERSION"="0101011"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Hide this computer"
  11. "TEXT 2"="Allow long share names"
  12. "DESCRIPTION 1"="If you do not want that this computer can been seen on the network, activate the first option."
  13. "DESCRIPTION 2"="The computer can still be reached and accessed, it's just no longer visible for other computers using the browser service."
  14. "DESCRIPTION 3"=" "
  15. "DESCRIPTION 4"="By default, Windows NT cannot use shares that contain more than 12 characters. By activating the second option, you can enable this."
  16. "DESCRIPTION 5"="Please note that you need at least NT SP3 for this!!"
  17. "AUTHOR"="Xteq Systems"
  18. "CONTACTURL"="http://www.xteq.com"
  19. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  20. "COMMENT 1"=" "
  21. "COMMENT 2"="Setting #2: MS KB Q169049"
  22.  
  23.  
  24. sP2="HKLM\System\CurrentControlSet\Services\Rdr\Parameters\"
  25. sV2="AllowLongShareName"
  26. Sub Plugin_Initialize 
  27.     If RegPathExists("HKLM\System\CurrentControlSet\Services\LanmanServer") then
  28.        i=RegReadValue("HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters\Hidden")
  29.        if i=1 then
  30.           Call SetUIElement(1,true)
  31.        end if
  32.     end if
  33.  
  34.     i=RegReadValue(sP2 & sV2)
  35.     if i=1 then SetUiElement 2,true 
  36.  
  37. End Sub
  38.  
  39. Sub Plugin_CheckData(ElementIndex)
  40. End Sub
  41.  
  42. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  43.  If GetUIElement(1)=true then
  44.     Call RegWriteValue("HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters\Hidden",1,2)
  45.  else
  46.     Call RegWriteValue("HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters\Hidden",0,2)
  47.  end if
  48.  
  49.  If GetUIElement(2)=true then
  50.     Call RegWriteValue(sp2 & sv2,"1",2)
  51.  else
  52.     Call RegWriteValue(sp2 & sv2,"0",2)
  53.  end if
  54.  
  55.  Restart
  56. End Sub
  57.  
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.  
  62.  
  63.  
  64.